<clp_copyselected> : Copy Selected (Object)

Copies selected data (text in a word processor, graphics in a graphics program, file in Windows Explorer, etc.) to clipboard.  This command does much more then just pressing Ctrl+C (or Ctrl+Insert) key combination.  The command also waits until the data are saved in the clipboard before macro execution continues.

Syntax: 

<clp_copyselected>(CopyKeyCombination)

CopyKeyCombination
0 - Ctrl+C key combination is used to copy the data to clipboard.
1 - Ctrl+Insert key combination is used to copy the data to clipboard.

Example: 

<#> This example copies selected data to clipboard
<#>
<cmds>
<me_error_nodisplay>
<clp_copyselected>(0)
<if_str>("_vErr != NO")
   <msg>(-100,-100,"Cannot save data to clipboard - no text (or other object) is selected.","Message",1)
<endif>